home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1997 May
/
PC Plus Super CD Issue 127 (May 1997).iso
/
handson
/
handson.exe
/
CREATURE.CLASS
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-02-07
|
629 b
|
13 lines
class Creature extends Thing {
private String species;
Creature(String aName, String aDescription, String aSpecies) {
super(aName, aDescription);
this.species = aSpecies;
}
String getSpecies() {
return this.species;
}
}